Mood Evaluation Screen
fun MoodEvaluationScreen(modifier: Modifier = Modifier, viewModel: EvaluationMenuViewModel = hiltViewModel(), openDrawer: () -> Unit, onNavigateToDaily: () -> Unit, onNavigateToBiWeekly: () -> Unit)
Composable that displays the main Mood Evaluation screen with a top app bar and navigation options.
Parameters
modifier
Modifier for customizations to the layout.
view Model
The ViewModel to provide the UI state for mood evaluations.
open Drawer
A function to open the navigation drawer.
on Navigate To Daily
A function to navigate to the daily evaluation screen.
on Navigate To Bi Weekly
A function to navigate to the bi-weekly evaluation screen.